a9f3e0428e9fd0f580105955dce391f0fec12cfa,src/org/opencms/mail/CmsSimpleMail.java,CmsSimpleMail,send,#,111

Before Change


                CmsRuntimeException rte = new CmsRuntimeException(Messages.get().container(
                    Messages.ERR_SEND_EMAIL_HOSTNAME_1,
                    host.getHostname()), me);
                sfe.initCause(rte);
                throw new EmailException(sfe);
            }
        } catch (MessagingException e) {

After Change


                    Messages.ERR_SEND_EMAIL_AUTHENTICATE_2,
                    host.getUsername(),
                    host.getHostname()));
                rte.initCause(e);
                throw rte;

            } else {